Murine species trees & rates
knitr::opts_chunk$set(echo = TRUE, warning = FALSE, message = FALSE)
library(ggplot2)
library(cowplot)
library(ggbeeswarm)
library(dplyr)
#library(kableExtra)
library(tidyr)
library(ggtree)
library(phytools)
library(phangorn)
library(reshape2)
library(ggExtra)
library(ggrepel)
library(vroom)
library(ggdist)
source("C:/bin/core/corelib/design.r")
source("C:/bin/core/get_tree_info.r")
#htmltools::includeHTML("../html-chunks/rmd_nav.html")1 Full coding species tree
# tree_type = "astral"
save_tree_fig = F
if(tree_type == "astral"){
cat("188 species.\n11,775 coding loci.\nGene trees inferred with IQtree.\nSpecies tree inferred with ASTRAL (no branch lengths shown).\n")
}else if(tree_type == "concat"){
cat("188 species.\n11,775 coding loci.\nGene trees inferred with IQtree.\nSpecies tree inferred by concatenation of all loci with IQtree.\n")
}## 188 species.
## 11,775 coding loci.
## Gene trees inferred with IQtree.
## Species tree inferred with ASTRAL (no branch lengths shown).
tree_file = "../../data/trees/full_coding_iqtree_astral.cf.rooted.tree"
astral_tree = read.tree(tree_file)
tree_to_df_list = treeToDF(astral_tree)
tree_info_astral = tree_to_df_list[["info"]]
#tree_info_astral = treeToDF(astral_tree)
tree_info_astral = tree_info_astral %>% separate(label, c("astral", "gcf", "scf"), sep="/", remove=F)
tree_info_astral$astral[tree_info_astral$node.type=="tip"] = NA
tree_info_astral$astral = as.numeric(tree_info_astral$astral)
tree_info_astral$gcf = as.numeric(tree_info_astral$gcf)
tree_info_astral$scf = as.numeric(tree_info_astral$scf)
# Read astral tree data
concat_file = "../../data/trees/full_coding_iqtree_concat.cf.rooted.tree"
concat_tree = read.tree(concat_file)
tree_to_df_list = treeToDF(concat_tree)
tree_info_concat = tree_to_df_list[["info"]]
#tree_info_concat = treeToDF(concat_tree)
tree_info_concat = tree_info_concat %>% separate(label, c("bootstrap", "gcf", "scf"), sep="/", remove=F)
tree_info_concat$bootstrap[tree_info_concat$node.type=="tip"] = NA
tree_info_concat$bootstrap = as.numeric(tree_info_concat$bootstrap)
tree_info_concat$gcf = as.numeric(tree_info_concat$gcf)
tree_info_concat$scf = as.numeric(tree_info_concat$scf)
# Read concat tree data
rf = RF.dist(concat_tree, astral_tree)
nrf = RF.dist(concat_tree, astral_tree, normalize=T)
#treecomp = comparePhylo(concat_tree, astral_tree, plot=T)
# Stores node ids of common clades between trees!
#write.csv(tree_info, "../../data/trees/full-coding-concat-cf-rooted.csv", row.names=F)
if(tree_type == "astral"){
tree_info = tree_info_astral
rodent_tree = astral_tree
xmax = 31
iq_tree_labels = "../../data/trees/full_coding_iqtree_astral.cf.branch.rooted"
cf_stat_file = "../../data/trees/full_coding_iqtree_astral.cf.stat"
cf_rep_dir = "../../data/trees/astral-cf-reps/"
delta_outfile = "../../data/trees/astral-delta.tab"
}else if(tree_type == "concat"){
tree_info = tree_info_concat
rodent_tree = concat_tree
xmax = 0.125
iq_tree_labels = "../../data/trees/full_coding_iqtree_concat.cf.branch.rooted"
cf_stat_file = "../../data/trees/full_coding_iqtree_concat.cf.stat"
cf_rep_dir = "../../data/trees/concat-cf-reps/"
delta_outfile = "../../data/trees/concat-delta.tab"
}
cf_stats = read.table(cf_stat_file, header=T)# The node/branch labels in R and IQtree differ. IQtree uses a nice, logical post-ordering
# of internal nodes while R does something random and assigns labels to tips as well. This
# chunk matches those up for the delta analysis later
iq_tree = read.tree(iq_tree_labels)
iqtree_to_df_list = treeToDF(iq_tree)
iqtree_info = iqtree_to_df_list[["info"]]
# Read the IQ tree tree with branch labels in and parse with get_tree_info
#node_convert = matchNodes(tree_to_df_list[["labeled.tree"]], iqtree_to_df_list[["labeled.tree"]], method="descendants")
tree_info$iqtree.node = NA
# Add a column to the main tree table about IQ tree labels
for(i in 1:nrow(tree_info)){
cur_node = tree_info[i,]$node
iqtree_row = subset(iqtree_info, node==cur_node)
iqtree_label = iqtree_row$label
tree_info[i,]$iqtree.node = iqtree_label
}
# For every row in the main tree table, add in the IQ tree node label given that
# we've read the same tree in R and can use the node.labels1.0.1 Species tree with branches colored by gene concordance factor
h = corecol(numcol=1, pal="wilke", offset=3)
l = corecol(numcol=1, offset=3)
# Colors
gcf_tree = ggtree(rodent_tree, size=0.8, ladderize=F, aes(color=tree_info$gcf)) +
scale_color_continuous(name='gCF', low=l, high=h, limits=c(0,100)) +
xlim(0, xmax) +
geom_tiplab(color="#333333", fontface='italic', size=2) +
theme(legend.position=c(0.05,0.9))
print(gcf_tree)if(save_tree_fig){
gcf_tree = gcf_tree + geom_text(aes(x=branch, label=ifelse(tree_info$node.type=="internal",as.character(node), ''), label.size=NA, fill="transparent"), size=2, vjust=-0.2)
tree_outfile = paste("../../data/trees/", tree_type, "-gcf-tree.pdf", sep="")
ggsave(tree_outfile, gcf_tree, width=8, height=16, unit="in")
}
# gCF tree1.0.2 Species tree with branches colored by site concordance factor
h = corecol(numcol=1, pal="wilke", offset=3)
l = corecol(numcol=1, offset=3)
# Colors
scf_tree = ggtree(rodent_tree, size=0.8, ladderize=F, aes(color=tree_info$scf)) +
scale_color_continuous(name='sCF', low=l, high=h, limits=c(0,100)) +
xlim(0, xmax) +
geom_tiplab(color="#333333", fontface='italic', size=2) +
theme(legend.position=c(0.05,0.9))
#geom_text(aes(label=rodent_data$support), hjust=-.1, color="#006ddb") +
#geom_nodepoint(color="#666666", alpha=0.85, size=4)
print(scf_tree)#ggsave("../data/trees/scf-tree.pdf", scf_tree, width=8, height=16, unit="in")
# sCF tree1.0.3 Gene vs site concordance factors colored by branch support
h = corecol(numcol=1, pal="wilke", offset=3)
l = corecol(numcol=1, offset=3)
# Colors
if(tree_type == "astral"){
p = ggplot(tree_info, aes(x=gcf, y=scf, color=astral)) +
geom_point() +
scale_color_continuous(name='Astral support', low=l, high=h, limits=c(0.8,1))
}else if(tree_type == "concat"){
p = ggplot(tree_info, aes(x=gcf, y=scf, color=bootstrap)) +
geom_point() +
scale_color_continuous(name='Bootstrap', low=l, high=h, limits=c(0,100))
}
p = p + bartheme() +
theme(legend.title=element_text(size=12))
print(p)1.0.4 Concordance factors vs. branch lengths
bl_gcf_p = ggplot(tree_info, aes(x=branch.length, y=gcf)) +
geom_point(size=3, alpha=0.5) +
#geom_text_repel(aes(label=ifelse(avg.ds>0.2|avg.dn>0.01,as.character(node),'')), show_guide=F) +
#geom_smooth(method="lm", se=F, ) +
xlab("Branch length") +
ylab("gCF per branch") +
bartheme()
if(tree_type=="concat"){
bl_gcf_p = bl_gcf_p + scale_x_continuous(limits=c(0,0.035))
}
#theme(legend.position="bottom") +
#guides(colour = guide_legend(override.aes = list(alpha = 1)))
bl_gcf_p = ggExtra::ggMarginal(bl_gcf_p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1, offset=4), color="#666666")
bl_scf_p = ggplot(tree_info, aes(x=branch.length, y=scf)) +
geom_point(size=3, alpha=0.5) +
#geom_text_repel(aes(label=ifelse(avg.ds>0.2|avg.dn>0.01,as.character(node),'')), show_guide=F) +
#geom_smooth(method="lm", se=F, ) +
xlab("Branch length") +
ylab("sCF per branch") +
bartheme()
if(tree_type=="concat"){
bl_gcf_p = bl_gcf_p + scale_x_continuous(limits=c(0,0.035))
}
#theme(legend.position="bottom") +
#guides(colour = guide_legend(override.aes = list(alpha = 1)))
bl_scf_p = ggExtra::ggMarginal(bl_scf_p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1, offset=5), color="#666666")
p = plot_grid(bl_gcf_p, bl_scf_p, ncol=2)
print(p)2 Gene trees
The 11,774 gene trees contain varying numbers of taxa due to filtering on the alignment and filtering by IQtree for identical sequences.
2.0.1 Distribution of taxa per gene tree
gt_file = "../../data/trees/loci.treefile"
gt = read.tree(gt_file)
gt_data = data.frame("rfs"=c(), "num.tips"=c(), "rf.zeros"=c(), "num.tips.zeros"=c())
for(i in 1:length(gt)){
cur_tips = gt[[i]]$tip.label
pruned_tree = drop.tip(rodent_tree, rodent_tree$tip.label[-match(cur_tips, rodent_tree$tip.label)])
cur_rf = RF.dist(pruned_tree, gt[[i]], normalize=T)
if(cur_rf==0){
gt_data = rbind(gt_data, data.frame("rfs"=cur_rf, "num.tips"=length(cur_tips), "rf.zeros"=cur_rf, "num.tips.zeros"=length(cur_tips)))
}else{
gt_data = rbind(gt_data, data.frame("rfs"=cur_rf, "num.tips"=length(cur_tips), "rf.zeros"=NA, "num.tips.zeros"=NA))
}
}
p = ggplot(gt_data, aes(x=num.tips)) +
geom_histogram(bins=50, fill=corecol(pal="wilke", numcol=1, offset=6), color="#666666") +
#geom_quasirandom(size=2, width=0.25, alpha=0.25, color="#666666") +
#geom_boxplot(outlier.shape=NA, alpha=0.75, width=0.5, color="#666666") +
scale_y_continuous(expand=c(0,0)) +
xlab("# of taxa") +
ylab("# of gene trees") +
bartheme()
print(p)2.0.2 Tree distance (RF) distribution between gene trees and species tree
Since RF cannot handle missing taxa, the species tree is pruned for each gene tree to calculate Robinson-Foulds distance. We use the normalized metric since there are varying numbers of tips per gene tree.
p = ggplot(gt_data, aes(x=rfs)) +
geom_histogram(bins=50, fill=corecol(pal="wilke", numcol=1, offset=4), color="#666666") +
#geom_quasirandom(size=2, width=0.25, alpha=0.25, color="#666666") +
#geom_boxplot(outlier.shape=NA, alpha=0.75, width=0.5, color="#666666") +
scale_y_continuous(expand=c(0,0)) +
xlab("Normalized RF") +
ylab("# of gene trees") +
bartheme()
print(p)2.0.3 Delta
2.0.3.1 Brief introduction
For each lineage in the species tree with gCF < 95% we calculated the \(\Delta\) statistic (Huson et al. 2005). This statistic follows the same logic as the ABBA-BABA site patterns used to calculate D-statistics, but uses gene tree topologies instead of alignment sites. Briefly, a given branch in an unrooted tree is defined by a quartet of species groupings with two possible discordant topologies, \(D_1\) and \(D_2\) (see Figure 1 from Minh et al. 2020). Under assumptions that discordance is caused by ILS, both discordant topologies should be present in equal proportions. However, if introgression has occurred one discordant topology will appear more frequently than the other. \(\Delta\) is calculated for a branch as follows, using the frequency of each discordant topology (Vanderpool et al. 2020):
\[\Delta = \frac{D_1 - D_2}{D_1 + D_2}\]
This normalized \(\Delta\) calculation ensures that all values are scaled between 0 and 1, with larger values indicating a larger skew towards one topology, and a higher chance that introgression has occurred.
To test whether the observed \(\Delta\) values are skewed significantly from 0 to imply introgression, we performed concordance factor analysis on 1,000 bootstrap replicates of our inferred gene trees to generate a null distribution of \(\Delta\) values. We then calculated Z-scores and p-values and assessed significance for each branch at a threshold of 0.01.
2.0.3.2 Results
Nodes with p < 0.01:
cf_stats$delta = (abs(cf_stats$gDF1_N - cf_stats$gDF2_N)) / (cf_stats$gDF1_N + cf_stats$gDF2_N)
# Calculate the delta values on the actual data
low_cf_nodes = subset(cf_stats, gCF < 95)
# Get the low concordance factor nodes from the data to test with delta
delta_null = c()
for(i in 0:999){
cur_rep_str = as.character(i)
#print(cur_rep_str)
while(nchar(cur_rep_str) < 4){
cur_rep_str = paste("0", cur_rep_str, sep="")
}
# Handling the string of the rep
cur_cf_file = paste(cf_rep_dir, "rep", cur_rep_str, ".cf.stat", sep="")
cf_rep = read.table(cur_cf_file, header=T, fill=T)
# Read the current reps cf file
cf_rep$delta = (abs(cf_rep$gDF1_N - cf_rep$gDF2_N)) / (cf_rep$gDF1_N + cf_rep$gDF2_N)
delta_null = c(delta_null, cf_rep$delta)
# Calculate delta for this rep and save values in vector
}
# Read concordance factors from bootstrap samples of gene trees and calculate delta to generate
# null distribution
delta_null_df = data.frame("delta"=delta_null, y="duh")
delta_null_df = subset(delta_null_df, !is.nan(delta))
# Convert the delta values to a data frame for ggplot
delta_mu = mean(delta_null_df$delta, na.rm=T)
delta_sd = sd(delta_null_df$delta, na.rm=T)
# Calculate the mean and sd of the null distribution to get z-scores and p-values
delta_out = data.frame("node"=c(), "delta"=c(), "z-score"=c(), "p-value"=c())
# Initialize output data frame
tree_info$delta.sig = F
# Add a column to the tree info table about significant delta values
for(i in 1:nrow(low_cf_nodes)){
row = low_cf_nodes[i,]
z = (row$delta - delta_mu) / delta_sd
p = pnorm(-abs(z))
if(p < 0.01){
print(paste(row$ID, row$delta, z, p, sep=" "))
tree_info$delta.sig[tree_info$iqtree.node==row$ID] = T
# Set the delta significant to TRUE in the main tree info table
}
delta_out = rbind(delta_out, data.frame("node"=row$ID, "delta"=row$delta, "z-score"=z, "p-value"=p))
}## [1] "282 0.40548137737175 2.43334742938723 0.00747996932293452"
## [1] "286 0.410672853828306 2.47825884686394 0.00660126628112862"
## [1] "288 0.627906976744186 4.3575493466097 6.57634251391119e-06"
## [1] "304 0.407725321888412 2.45275977379941 0.0070882488601971"
## [1] "307 0.511338697878566 3.34911818439904 0.00040534603511502"
## [1] "312 0.41615356754799 2.52567245337739 0.00577385448888136"
## [1] "357 0.532062391681109 3.5283986784577 0.000209040982510575"
## [1] "359 0.465612648221344 2.95354252824397 0.00157074659668177"
# Calculate z and p for each low gCF node in the species tree and save to output data frame
write.table(file=delta_outfile, delta_out, sep="\t", row.names=F)
delta_null_p = ggplot(delta_null_df, aes(x=delta)) +
geom_histogram(color="#ececec", bins=50) +
scale_x_continuous(limits=c(0,1)) +
scale_y_continuous(expand=c(0,0)) +
xlab("Delta") +
ylab("# nodes") +
bartheme()
delta_actual_p = ggplot(low_cf_nodes, aes(x=delta)) +
geom_histogram(fill="#920000", color="#ececec") +
scale_x_continuous(limits=c(0,1)) +
scale_y_continuous(expand=c(0,0)) +
xlab("Delta") +
ylab("# nodes") +
bartheme()
delta_p = plot_grid(delta_null_p, delta_actual_p, ncol=2, labels=c("Null distribution", "Actual distribution"), label_size=12)
print(delta_p)2.0.4 Branches with evidence for introgression
h = corecol(numcol=1, pal="wilke", offset=1)
l = corecol(numcol=1, offset=1)
intro_tree = ggtree(rodent_tree, size=0.8, ladderize=F, aes(color=tree_info$delta.sig)) +
scale_color_manual(name="Significant Delta", labels=c("True", "False"), values=corecol(pal="trek", numcol=2)) +
xlim(0, xmax) +
geom_tiplab(color="#333333", fontface='italic', size=2) +
theme(legend.position=c(0.05,0.9)) +
geom_label(aes(x=branch, label=ifelse(tree_info$delta.sig,as.character(node),'')), label.size=NA, fill="transparent")
#geom_text(aes(label=rodent_data$support), hjust=-.1, color="#006ddb") +
#geom_nodepoint(color="#666666", alpha=0.85, size=4)
print(intro_tree)3 Average rates per gene with basic model fit (mg94-local)
We ran each of the 11,775 coding loci through HyPhy’s standard MG94 fit with the -local option to estimate a rate for each branch in the input tree.
For input trees we used the gene tree estimated from each individual alignment to reduce false inferences of substitutions that result from tree misspecification.
#mg94_local_file = "../../data/rates/full-coding-mg94-local.csv.gz"
mg94_local_file = "../../data/rates/full-coding-mg94-local.csv"
mg94_local = vroom(mg94_local_file, comment="#")
mg94_local_gene = group_by(mg94_local, file) %>% summarize(dn=mean(dn, na.rm=T), ds=mean(ds, na.rm=T), dn.ds=mean("dn/ds", na.rm=T), nonsynonymous.bl=mean("nonsynonymous bl", na.rm=T), synonymous.bl=mean("synonymous bl", na.rm=T))
p = ggplot(subset(mg94_local_gene, ds < 0.05), aes(x=ds, y=dn)) +
geom_point(size=2, alpha=0.2, color="#333333") +
#geom_smooth(method="lm", se=F, ) +
xlab("Avg. dS per gene") +
ylab("Avg. dN per gene") +
bartheme()
p = ggExtra::ggMarginal(p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1), color="#666666")
print(p)ds_p = ggplot(subset(mg94_local_gene, ds < 0.05), aes(x=ds)) +
geom_histogram(bins=50, fill=corecol(pal="wilke", numcol=1), color="#666666") +
scale_y_continuous(expand=c(0,0)) +
xlab("dS") +
ylab("# of genes") +
bartheme()
print(ds_p)
# Distribution of dS when using concatenated treedn_p = ggplot(mg94_local_gene, aes(x=dn)) +
geom_histogram(bins=50, fill=corecol(pal="wilke", numcol=1), color="#666666") +
scale_y_continuous(expand=c(0,0)) +
xlab("dN") +
ylab("# of genes") +
bartheme()
print(dn_p)
# Distribution of dS when using gene treesds_filter_level = quantile(mg94_local_gene$ds, 0.98)
#ds_filter_level = 0.03
ds_filter = subset(mg94_local_gene, ds > ds_filter_level)$file
# Get a list of genes to filter out in subsequent analyses based on dS
print(paste("Removing", length(ds_filter), "genes with dS above", ds_filter_level, "from subsequent analyses."))## [1] "Removing 236 genes with dS above 0.0286355420964189 from subsequent analyses."
#write.csv(ds_filter, file="../../data/rates/full-coding-mg94-local-ds-filter-0.95quant.csv", row.names=F)4 Average rates per branch with basic model fit (mg94-local)
Because we used the gene trees, in order to quantify rates on species tree branches we first needed to check whether branches in the species tree exist in a given gene tree.
This resulted in three categories for a species tree branch in a given gene tree:
- Full clade: All species in the clade that descends from the branch in the species tree are present as a monophyletic split in the gene tree.
- Parital clade: Not all species in the clade that descends from the branch in the species tree are present in the gene tree, but the ones that are present form a monophyletic split.
- Discordant/missing clade: Either the species in the clade that descends from the branch in the species tree do not form a monophyletic split in this gene tree (discordant) or ALL species in this clade are missing from this gene tree (missing)
Average rates are then calculated as (for dS, for example):
\[\frac{\sum_{i=1}^{n}\text{branch dS}_i}{n}\]
Where:
- \(n = \text{# full clade genes} + \text{# partial clade genes}\) for this branch
4.0.1 Species tree branch presence/absence per gene
if(tree_type == "astral"){
tree_rates = read.csv("../../data/rates/full-coding-astral-cf-rooted-rates.csv", header=T)
}else if(tree_type == "concat"){
tree_rates = read.csv("../../data/rates/full-coding-concat-cf-rooted-rates.csv", header=T)
}
# Read the branch average rate data
full_clade = select(tree_rates, clade, node.type, num.genes.full)
full_clade$label = "Full clade"
names(full_clade)[3] = "num.genes"
partial_clade = select(tree_rates, clade, node.type, num.genes.partial)
partial_clade$label = "Partial clade"
names(partial_clade)[3] = "num.genes"
no_clade = select(tree_rates, clade, node.type, num.genes.no.clade)
no_clade$label = "Discordant/missing clade"
names(no_clade)[3] = "num.genes"
clade_counts = rbind(full_clade, partial_clade, no_clade)
# Convert branch categories to long format
clade_counts$label = factor(clade_counts$label, levels=c("Full clade", "Partial clade", "Discordant/missing clade"))
branch_counts = ggplot(clade_counts, aes(x=label, y=num.genes, group=label, color=node.type)) +
geom_quasirandom(size=2, width=0.25, alpha=0.25) +
geom_boxplot(outlier.shape=NA, alpha=0.15, width=0.5, color="#666666") +
ylab("# of genes") +
xlab("Species tree\nbranch classification") +
bartheme() +
theme(axis.text.x = element_text(angle=25, hjust=1)) +
guides(colour=guide_legend(override.aes=list(alpha=1)))
print(branch_counts)These measures are highly correlated with gene concordance factors:
4.0.2 Correlation between gCF and the % of genes that contain the descending clade for each species tree branch
tree_rates$clade.perc = (tree_rates$num.genes.full + tree_rates$num.genes.partial) / (tree_rates$num.genes.full + tree_rates$num.genes.partial + tree_rates$num.genes.no.clade)
p = ggplot(tree_rates, aes(x=gcf, y=clade.perc)) +
geom_point(size=2, alpha=0.4, color="#333333") +
geom_smooth(method="lm", se=F, linetype="dashed", color="#920000") +
xlab("gCF") +
ylab("% of genes with clade present") +
bartheme() +
theme(legend.position="none")
print(p)4.0.3 This results in the following distributions for average rates across branches:
p = ggplot(subset(tree_rates, node.type!="ROOT"), aes(x=avg.ds, y=avg.dn, color=node.type)) +
geom_point(size=2, alpha=0.2) +
geom_text_repel(aes(label=ifelse(avg.ds>0.2|avg.dn>0.01,as.character(node),'')), show_guide=F) +
#geom_smooth(method="lm", se=F, ) +
xlab("Avg. dS per branch") +
ylab("Avg. dN per branch") +
bartheme() +
theme(legend.position="bottom") +
guides(colour = guide_legend(override.aes = list(alpha = 1)))
p = ggExtra::ggMarginal(p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1, offset=1), color="#666666")
print(p)tree_rates$ds.outlier = ifelse(tree_rates$avg.ds>0.2,tree_rates$node,'')
tree_rates$dn.outlier = ifelse(tree_rates$avg.dn>0.01,tree_rates$node,'')4.0.4 The tree with branches colored by dS and outliers labeled:
h = corecol(numcol=1, pal="wilke", offset=1)
l = corecol(numcol=1, offset=1)
rate_tree = ggtree(rodent_tree, size=0.8, ladderize=F, aes(color=tree_rates$avg.ds)) +
scale_color_continuous(name='Avg. dS', low=l, high=h, limits=c(0,0.9)) +
xlim(0, xmax) +
geom_tiplab(color="#333333", fontface='italic', size=2) +
theme(legend.position=c(0.05,0.9)) +
geom_label(aes(x=branch, label=ifelse(tree_rates$avg.ds>0.2,as.character(node),'')), label.size=NA, fill="transparent")
#geom_text(aes(label=node), hjust=-.1, color="#006ddb")
#geom_nodepoint(color="#666666", alpha=0.85, size=4)
print(rate_tree)4.0.5 The tree with branches colored by dN and outliers labeled:
h = corecol(numcol=1, pal="wilke", offset=1)
l = corecol(numcol=1, offset=1)
rate_tree = ggtree(rodent_tree, size=0.8, ladderize=F, aes(color=tree_rates$avg.dn)) +
scale_color_continuous(name='Avg. dN', low=l, high=h, limits=c(0,0.015)) +
xlim(0, xmax) +
geom_tiplab(color="#333333", fontface='italic', size=2) +
theme(legend.position=c(0.05,0.9)) +
geom_label(aes(x=branch, label=ifelse(tree_rates$avg.dn>0.01,as.character(node),'')), label.size=NA, fill="transparent")
#geom_text(aes(label=rodent_data$support), hjust=-.1, color="#006ddb") +
#geom_nodepoint(color="#666666", alpha=0.85, size=4)
print(rate_tree)5 Rates and discordance
5.0.1 dS vs. concordance factors
Only branches with avg. dS < 0.05
ds_gcf_p = ggplot(subset(tree_rates, node.type!="ROOT" & avg.ds < 0.05), aes(x=avg.ds, y=gcf)) +
geom_point(size=3, alpha=0.5) +
#geom_text_repel(aes(label=ifelse(avg.ds>0.2|avg.dn>0.01,as.character(node),'')), show_guide=F) +
#geom_smooth(method="lm", se=F, ) +
xlab("Avg. dS per branch") +
ylab("gCF per branch") +
bartheme()
#theme(legend.position="bottom") +
#guides(colour = guide_legend(override.aes = list(alpha = 1)))
ds_gcf_p = ggExtra::ggMarginal(ds_gcf_p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1, offset=4), color="#666666")
ds_scf_p = ggplot(subset(tree_rates, node.type!="ROOT" & avg.ds < 0.05), aes(x=avg.ds, y=scf)) +
geom_point(size=3, alpha=0.5) +
#geom_text_repel(aes(label=ifelse(avg.ds>0.2|avg.dn>0.01,as.character(node),'')), show_guide=F) +
#geom_smooth(method="lm", se=F, ) +
xlab("Avg. dS per branch") +
ylab("sCF per branch") +
bartheme()
#theme(legend.position="bottom") +
#guides(colour = guide_legend(override.aes = list(alpha = 1)))
ds_scf_p = ggExtra::ggMarginal(ds_scf_p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1, offset=5), color="#666666")
p = plot_grid(ds_gcf_p, ds_scf_p, ncol=2)
print(p)5.0.2 dN vs. concordance factors
Only branches with avg. dN < 0.01
dn_gcf_p = ggplot(subset(tree_rates, node.type!="ROOT" & avg.dn < 0.01), aes(x=avg.dn, y=gcf)) +
geom_point(size=3, alpha=0.5) +
#geom_text_repel(aes(label=ifelse(avg.ds>0.2|avg.dn>0.01,as.character(node),'')), show_guide=F) +
#geom_smooth(method="lm", se=F, ) +
xlab("Avg. dN per branch") +
ylab("gCF per branch") +
bartheme()
#theme(legend.position="bottom") +
#guides(colour = guide_legend(override.aes = list(alpha = 1)))
dn_gcf_p = ggExtra::ggMarginal(dn_gcf_p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1, offset=4), color="#666666")
dn_scf_p = ggplot(subset(tree_rates, node.type!="ROOT" & avg.dn < 0.01), aes(x=avg.dn, y=scf)) +
geom_point(size=3, alpha=0.5) +
#geom_text_repel(aes(label=ifelse(avg.ds>0.2|avg.dn>0.01,as.character(node),'')), show_guide=F) +
#geom_smooth(method="lm", se=F, ) +
xlab("Avg. dN per branch") +
ylab("sCF per branch") +
bartheme()
#theme(legend.position="bottom") +
#guides(colour = guide_legend(override.aes = list(alpha = 1)))
dn_scf_p = ggExtra::ggMarginal(dn_scf_p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1, offset=5), color="#666666")
p = plot_grid(dn_gcf_p, dn_scf_p, ncol=2)
print(p)5.0.3 dN/dS vs. concordance factors
Only branches with avg. dN/dS < 0.5
dnds_gcf_p = ggplot(subset(tree_rates, node.type!="ROOT" & avg.dn.ds < 0.5), aes(x=avg.dn.ds, y=gcf)) +
geom_point(size=3, alpha=0.5) +
#geom_text_repel(aes(label=ifelse(avg.ds>0.2|avg.dn>0.01,as.character(node),'')), show_guide=F) +
#geom_smooth(method="lm", se=F, ) +
xlab("Avg. dN/dS per branch") +
ylab("gCF per branch") +
bartheme()
#theme(legend.position="bottom") +
#guides(colour = guide_legend(override.aes = list(alpha = 1)))
dnds_gcf_p = ggExtra::ggMarginal(dnds_gcf_p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1, offset=4), color="#666666")
dnds_scf_p = ggplot(subset(tree_rates, node.type!="ROOT" & avg.dn.ds < 0.5), aes(x=avg.dn.ds, y=scf)) +
geom_point(size=3, alpha=0.5) +
#geom_text_repel(aes(label=ifelse(avg.ds>0.2|avg.dn>0.01,as.character(node),'')), show_guide=F) +
#geom_smooth(method="lm", se=F, ) +
xlab("Avg. dN/dS per branch") +
ylab("sCF per branch") +
bartheme()
#theme(legend.position="bottom") +
#guides(colour = guide_legend(override.aes = list(alpha = 1)))
dnds_scf_p = ggExtra::ggMarginal(dnds_scf_p, type="histogram", bins=50, fill=corecol(pal="wilke", numcol=1, offset=5), color="#666666")
p = plot_grid(dnds_gcf_p, dnds_scf_p, ncol=2)
print(p)6 Basic rate and phenotype correlations with tip branches
pheno = read.csv("../../data/phenotype-data/combined-phenotype-data.csv", header=T, comment.char="#")
tips = subset(tree_rates, node.type=="tip")
names(tips)[2] = "sample"
pheno_rates = merge(pheno, tips, by="sample")
pheno_rates = select(pheno_rates, sample, Adult_Mass.g., Total_Length.mm., Head.Body_Length.mm., Tail_Length.mm., Hind_Foot_Length.mm., Relative_Tail_Length, Relative_Hind_Foot_Length, avg.dn, avg.ds, avg.dn.ds)
pheno_rates_long = melt(pheno_rates, id.vars=c("sample", "avg.dn", "avg.ds", "avg.dn.ds"))
#pheno_rates_long = gather(pheno_rates, sample, value, Adult_Mass.g., Total_Length.mm., Head.Body_Length.mm., Tail_Length.mm., Hind_Foot_Length.mm., Relative_Tail_Length, Relative_Hind_Foot_Length)6.0.1 Avg dS per tip vs phenotype
p = ggplot(pheno_rates_long, aes(x=value, y=avg.ds)) +
geom_point(size=2, alpha=0.2, color="#333333") +
geom_smooth(method="lm", se=F, linetype="dashed", color=corecol(numcol=1, pal="wilke", offset=2)) +
xlab("Avg. trait value per tip") +
ylab("Avg. dS per tip") +
facet_wrap(~variable, scales="free_x") +
bartheme()
print(p)6.0.2 Avg dN per tip vs phenotype
p = ggplot(pheno_rates_long, aes(x=value, y=avg.dn)) +
geom_point(size=2, alpha=0.2, color="#333333") +
geom_smooth(method="lm", se=F, linetype="dashed", color=corecol(numcol=1, pal="wilke", offset=2)) +
xlab("Avg. trait value per tip") +
ylab("Avg. dN per tip") +
facet_wrap(~variable, scales="free_x") +
bartheme()
print(p)